home *** CD-ROM | disk | FTP | other *** search
/ PCMania 73 / PCMania CD73_1.iso / sharewar / varios / partial / REGALOS / ASM / HOLA.ASM next >
Assembly Source File  |  1996-02-01  |  281b  |  19 lines

  1. codigo SEGMENT 'CODE'
  2. ASSUME cs:codigo,ds:codigo,es:codigo,ss:codigo
  3. org 100h
  4.  
  5. inicio:
  6.  
  7.             mov dx,offset mensaje
  8.             mov ah,09
  9.             int 21h
  10.  
  11.             mov ax,4c00h
  12.             int 21h
  13.  
  14. mensaje  db 'Hola Mundo!$'
  15.  
  16. codigo ENDS
  17. END inicio
  18.  
  19.